vue-cli 3.x
vue-cli 3.0.0-beta.x , . _redirects public . dist, .
vue-cli 3.x
Vue.js webpack . webpack.prod.conf.js , Netlify. , .
new CopyWebpackPlugin webpack.prod.conf.js.
new CopyWebpackPlugin([
{
from: path.resolve(__dirname, '../static'),
to: config.build.assetsSubDirectory,
ignore: ['.*']
}
])
( , ). , root.
, _redirects root . root
webpack.prod.conf.js webpack.prod.conf.js , :
new CopyWebpackPlugin([
{
from: path.resolve(__dirname, '../static'),
to: config.build.assetsSubDirectory,
ignore: ['.*']
},
{
from: path.resolve(__dirname, '../root'),
to: config.build.assetsRoot,
ignore: ['.*']
}
])