123456789101112131415161718192021 |
- 'use strict'
- const path = require('path')
- function resolve(dir) {
- return path.join(__dirname, dir)
- }
- module.exports = {
- publicPath: '/',
- outputDir: 'dist',
- assetsDir: 'static',
- configureWebpack: {
- // provide the app's title in webpack's name field, so that
- // it can be accessed in index.html to inject the correct title.
- resolve: {
- alias: {
- '@': resolve('src')
- }
- }
- }
- }
|