Bugfixes, minor changes in settings interface, node modules updated
16 lines
374 B
JavaScript
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
|
|
}
|
|
}
|
|
});
|