2

我的堆栈是 Horizo​​n + React。我想在客户端使用foundation 6。我为我的 js 使用 webpack,但是当我尝试将它与 css 一起使用时,我只得到来自基础 css 的评论,但没有 css。

我的文件是:

webpack.config.js:

const path = require('path');

var config = {
    context: __dirname + "/src",
    entry: "./js/main.js",
    output: {
        filename: "bundle.js",
        path: __dirname + "/dist"
    },
    module: {
        loaders: [
            {
                test: /\.js$/,
                exclude: /node_modules/,
                loader: 'babel-loader',
                query: {
                    presets: ['react', 'es2015']
                }
            },
            {
                test: /\.scss$/,
                loaders: ['style', 'css', 'sass']
            }
        ]
    },
    resolve: {
        modulesDirectories: ['./node_modules']
    },
};
module.exports = config;

主要.scss:

@import "../../node_modules/foundation-sites/scss/foundation";

主.js:

...
//adding css
require("../css/main.scss");
...

在网页上我只看到:

/**
 * Foundation for Sites by ZURB
 * Version 6.2.3
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */

那么我做错了什么?

4

2 回答 2

7

你需要@include你想要使用的部分。例如,要包括所有内容:

@include foundation-everything;

相关文档在这里:

额外提示:Webpack 允许您使用~从模块目录导入:

@import "~foundation-sites/scss/foundation";
@include foundation-everything;
于 2016-06-25T17:36:39.287 回答
1

就 Webpack 而言 - 6.4 将附带 Webpack 支持https://github.com/zurb/foundation-sites/pull/9965

于 2017-05-03T21:11:51.753 回答