Ошибка сборки VueJS webpack, связанная с SCSS - PullRequest
0 голосов
/ 25 мая 2018

У меня возникают ошибки при попытке построить мой проект VueJS с помощью таблиц стилей.

Моя ошибка при запуске «yarn run dev --watch» приводит к следующим ошибкам:

c:\wamp\www\DBViewer2>yarn run dev --watch
yarn run v1.6.0
warning package.json: No license field
$ encore dev --progress=true --watch
Running webpack ...

  0% compiling
Webpack is watching the files…
                                                                                                                                   95% emitting ERROR  Failed to compile with 1 errors                                                                                                 16:00:56

This dependency was not found:

* !!vue-style-loader!css-loader?sourceMap!../node_modules/vue-loader/lib/style-compiler/index?{"optionsId":"0","vue":true,"scoped":false,"sourceMap":true}!scss-loader!../node_modules/vue-loader/lib/selector?type=styles&index=0!./App.vue in ./assets/App.vue

To install it, you can run: npm install --save !!vue-style-loader!css-loader?sourceMap!../node_modules/vue-loader/lib/style-compiler/index?{"optionsId":"0","vue":true,"scoped":false,"sourceMap":true}!scss-loader!../node_modules/vue-loader/lib/selector?type=styles&index=0!./A

Я не уверен, что вызывает это.Похоже, что он ищет файлы в неправильном месте?

Вот мой файл App.vue:

<template>
  <router-view></router-view>
</template>

<script>
export default {
  name: 'app'
}
</script>

<style lang="scss-loader">
  /* Import Font Awesome Icons Set */
  $fa-font-path: 'font-awesome/fonts/';
  @import 'font-awesome/scss/font-awesome.scss';
  /* Import Simple Line Icons Set */
  $simple-line-font-path: 'simple-line-icons/fonts/';
  @import 'simple-line-icons/scss/simple-line-icons.scss';
  /* Import Bootstrap Vue Styles */
  @import 'bootstrap-vue/dist/bootstrap-vue.css';
  /*// Import Main styles for this application*/
  @import './assets/scss/style';
</style>

Вот мой webpack.config.js:

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

Encore
    // the project directory where all compiled assets will be stored
    .setOutputPath('public_html/build/')

    // the public path used by the web server to access the previous directory
    .setPublicPath('/build')

    // will create public/build/app.js and public/build/app.css
    .addEntry('main', './assets/main.js')
    .addEntry('vendor', './assets/js/vendor.js')

    // allow legacy applications to use $/jQuery as a global variable
    .autoProvidejQuery()

    // enable source maps during development
    .enableSourceMaps(!Encore.isProduction())

    // empty the outputPath dir before each build
    .cleanupOutputBeforeBuild()

    // show OS notifications when builds finish/fail
    .enableBuildNotifications()

    // create hashed filenames (e.g. app.abc123.css)
    // .enableVersioning()
    .enableVueLoader()
    // allow sass/scss files to be processed
    .enableSassLoader()
;

// export the final configuration
module.exports = Encore.getWebpackConfig();

Любые предложения с благодарностью.Потратили 2 дня сейчас, пробуя разные вещи и исследования в Google.Я просто недостаточно знаком с symfony / encore, и это мой первый проект vuejs.

1 Ответ

0 голосов
/ 25 мая 2018

Чтобы иметь возможность использовать SCSS в шаблоне Vue, вам необходимо объявить в одном файловом компоненте следующий блок style:

<!-- Those styles are not scoped to that particular component -->
<style lang="scss">...</style>
<!-- Or those styles are scoped to that particular component -->
<style lang="scss" scoped>...</style>

Вы можете даже использовать оба в одном файле, если необходимо.

Вам также необходимо установить правильные зависимости узлов, выполнив:

npm install --dev node-sass sass-loader

Это должно сработать сразу после установки при использовании в проекте, инициализированном с vue-cli**

...