webpack的路径问题到底是怎么回事
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webpack的路径问题到底是怎么回事相关的知识,希望对你有一定的参考价值。
webpack的路径问题到底是:事实上前端构建过程一般都是建立在前后分离基础上的,你要想让自己的构建过程清晰、简单和方便,请首先将自己的项目前后实现分离。当然这个有难度,所以你的这个场景并不是非常适合gruntjs通常的构建模式。 对应问题讲完,再给你一些建议。 参考技术A
var path = require(\'path\'),
webpack = require(\'webpack\'),
ExtractTextPlugin = require(\'extract-text-webpack-plugin\'),
htmlWebpackPlugin = require(\'html-webpack-plugin\');module.exports =
context: path.resolve(__dirname, \'app/scripts\'),
entry:
index: \'./index.js\'
,
output:
path: path.resolve(__dirname, \'dist\'),
filename: \'scripts/[name].[hash].js\',
chunkFilename: \'scripts/[id].chunk.js\'
,
module:
loaders: [
以上是关于webpack的路径问题到底是怎么回事的主要内容,如果未能解决你的问题,请参考以下文章
springboot 国际化,出现一堆问号,是路径问题还是怎么回事