AudioLib/vue.config.js
Alexander I. Chebykin c25a2c16dd Bugfixes, minor changes in settings interface.
Bugfixes, minor changes in settings interface, node modules updated
2022-12-26 02:05:56 +03:00

16 lines
374 B
JavaScript

const { defineConfig } = require("@vue/cli-service");
module.exports = defineConfig({
transpileDependencies: true,
publicPath: process.env.NODE_ENV === "production"
? "/audiobooks.next/"
: "/",
pluginOptions: {
vuetify: {
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vuetify-loader
}
}
});