| 1234567891011121314151617181920 |
- module.exports = {
- "transpileDependencies": [
- "vuetify"
- ],
- devServer: {
- proxy: {
- '/api': {
- // target:'http://127.0.0.1:8888',
- target:'http://web.410eth.com:8888',
- changeOrigin:true,
- pathRewrite:{
- '^/api': ''
- }
- }
- },
- },
- publicPath: './'
- }
|