[Vuejs]-Webpack raw loader from from public path?

0👍

Found the answer here:

http://moduscreate.com/es6-es2015-import-no-relative-path-webpack/

Added this to my webpack config, which now works fine:

resolve: {
    modules: [
        path.resolve('./'),
        path.resolve('./node_modules')
    ]
}

Leave a comment