mirror of
https://github.com/bellingcat/osm-search.git
synced 2026-06-11 04:58:31 +03:00
17 lines
429 B
JavaScript
17 lines
429 B
JavaScript
const webpack = require('webpack');
|
|
|
|
const { defineConfig } = require("@vue/cli-service");
|
|
module.exports = defineConfig({
|
|
transpileDependencies: ["vuetify"],
|
|
configureWebpack: {
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
// allow access to process.env from within the vue app
|
|
'process.env': {
|
|
NODE_ENV: JSON.stringify(process.env.NODE_ENV)
|
|
}
|
|
})
|
|
]
|
|
}
|
|
});
|