mirror of
https://github.com/javaLuo/vue-flip-down.git
synced 2025-04-05 19:41:54 +08:00
13 lines
399 B
JavaScript
13 lines
399 B
JavaScript
const path = require("path");
|
|
|
|
module.exports = {
|
|
css: {
|
|
extract: process.env.NODE_ENV === "production" ? false : true,
|
|
},
|
|
outputDir: process.env.NODE_ENV === "production" ? path.resolve(__dirname, "dist") : path.resolve(__dirname, "example-dist"),
|
|
// publicPath: process.env.NODE_ENV === "production" ? "/" : "/example/",
|
|
// configureWebpack: config => {
|
|
// return {};
|
|
// },
|
|
};
|