Craig Hutchin̵son

Results 3 comments of Craig Hutchin̵son

I'm seeing this same issue, but in my case I have some packages installed from local tarball files like so: ```json "dependencies": { ... "my-package": "file:pkgs/my-package-1.2.3.tgz" ... } ``` `npm...

@tomachristian I'm currently using extract-text-webpack-plugin and I'm getting around the issue by supplying the plugin with a new "publicPath" like so: ```javascript { test: /\.s[ac]ss$/, use: extractCSS.extract({ publicPath: '', use:...

@tomachristian I am using `file-loader` for my assets, but the problem with that becomes how do I identify which assets are only being referenced from within my CSS and which...