Reputation: 2678
I am working on a react project and here is my folder structure: I want to load my example.css
which is in different folder inside index.js
templates
--src
--index.js
--index.html
static
--css
--example.css
--images
--etc
var debug = process.env.NODE_ENV !== "production";
var webpack = require('webpack');
config = {
context: __dirname,
devtool: debug ? "inline-sourcemap" : null,
entry: "./src/index.js",
output: {
path: "../../static/webpack_build",
filename: "bundle.js"
},
plugins: [
new webpack.DefinePlugin({ // <-- key to reducing React's size
'process.env': {
'NODE_ENV': JSON.stringify('production')
}
}),
new webpack.optimize.UglifyJsPlugin(), //minify everything
new webpack.optimize.AggressiveMergingPlugin()//Merge chunks
],
module: {
loaders: [{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader',
query:
{
presets:['es2015', 'react']
}
},
{
test: /\.css$/,
loader: 'style-loader!css-loader'
}
]
},
};
module.exports = config;
import React from 'react';
import ReactDOM from 'react-dom';
import styles from '../../static/css/affman.css'
ReactDOM.render(
<h1>Offer wall new version coming soon!</h1>,
document.getElementById('root')
);
When I try to bundle this using webpack
it gives module not found error.
ERROR in ./src/index.js
Module not found: Error: Can't resolve '../../static/css/affman.css' in '/home/kishan/mobifly/mobifly_mediation_engine/templates/frontend_mobifly/src'
@ ./src/index.js 11:14-50
Upvotes: 3
Views: 11145
Reputation: 4172
Try to use this link to the style:
import styles from '../css/affman.css'
enter code here
I think issue related with your output folder webpack_build from the webpack. And maybe we should set link to css from this folder
output: {
path: "../../static/webpack_build",
filename: "bundle.js"
}
I hope it will be helpful
Upvotes: 3