如何使用带有symfony编码的手写笔编码器

时间:2017-08-03 13:14:07

标签: symfony webpack

我想用手写笔代替sass写我的风格,但我找不到任何信息。

以下是webpack.config.js的实际配置:

var Encore = require('@symfony/webpack-encore');

Encore
    .setOutputPath('web/assets/')
    .setPublicPath('/assets')
    .cleanupOutputBeforeBuild()
    .addEntry('app', './assets/js/main.js')
    .addStyleEntry('global', './assets/css/global.scss')
    .enableSassLoader()
    .autoProvidejQuery()
    .enableSourceMaps(!Encore.isProduction());

module.exports = Encore.getWebpackConfig();

任何提示?

2 个答案:

答案 0 :(得分:0)

您可以添加自定义加载器

Encore
    // ...
    .addLoader({
        test: /\.styl$/,
        loader: 'style-loader!css-loader!stylus-loader'
    })
;

请记住安装手写笔加载器npm install --save-dev stylus-loader

请注意,加载程序的配置可能已根据您使用的Webpack版本进行了更改,但我希望您能获得一般的想法。

答案 1 :(得分:0)

您可以在closeButton.bezelStyle = .inline closeButton.setButtonType(.momentaryPushIn) if let buttonCell = closeButton.cell as? NSButtonCell { buttonCell.showsBorderOnlyWhileMouseInside = true } 中使用.enableStylusLoader(),但需要添加手写笔和手写笔加载器 Encore