javascript - react引入css檔 提示 Cannot find module "../../css/style.css"
滿天的星座
滿天的星座 2017-05-19 10:09:09
0
1
1639

在安裝了 style-loader 和 css-loader後,在component裡面引入css文件,報無法找到模組。 webpack的設定檔如下:
context: __dirname '/src',

entry:"./js/index.js",
module:{
    loaders:[{
        test:/\.js?$/,
        exclude:/(node_modules)/,
        loader: "babel-loader",
        query:{
            presets:['react','es2015'],
            plugins:['react-html-attrs'],
        }
    },
    {
        //test:/\.css$/,
        //loader:'style!css-loader?modules&importLoaders=1&localIdentName=[name]__[local]__[hash:base64:5]'
        test: /\.css$/,
        loader: 'style-loader!css-loader'
    }]
},
output:{
    path:__dirname+"/src/",
    filename:"bundle.js"
}

引入css檔案如下:
var footerCss = require("../../css/style.css");
export default class ComponentFooter extends React.Component{
# render(){

   console.log(footerCss);
   

報錯提示如下:

Uncaught Error: Cannot find module "../../css/style.css"

at webpackMissingModule (bundle.js:9979)
at Object.defineProperty.value (bundle.js:9979)
at __webpack_require__ (bundle.js:20)
at Object.ARIADOMPropertyConfig.Properties.aria-current (bundle.js:10178)
at __webpack_require__ (bundle.js:20)
at module.exports (bundle.js:66)
at bundle.js:69

註:src/css下面有footer.css檔

滿天的星座
滿天的星座

全部回覆(1)
给我你的怀抱

css檔案不是Module,不像其他元件有export...

使用方式:

import "../../css/style.css"

<p className="XXX"></p>

或:

import styles from "../../css/style.css"

<p className={styles.XXX}></p>
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!