12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- const debug = process.env.NODE_ENV !== "production";
- module.exports = {
-
-
-
-
-
-
-
-
- pages: {
- index: {
-
- entry: "examples/main.js",
-
- template: "pubilc/index.html",
-
- filename: "index.html"
- }
- },
- productionSourceMap: false,
- css: {
- loaderOptions: {
- less: {
- modifyVars: {
- "primary-color": "#1890FF",
-
-
- "layout-color": "#9867f7"
-
- },
- javascriptEnabled: true
- }
- }
- },
- configureWebpack: config => {
-
- if (debug) {
- config.devtool = "source-map";
- }
- }
- };
|