You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello i am new in webpack, i use a template for angular 2 and c# core that use webpack. But i am having an issue to set the background img. can anyone help me?
Not really sure, this is better as a stack overflow question... I'll close this, but anyway...I thought you have to use css-loader and style-loader together with sass-loader?
Hello i am new in webpack, i use a template for angular 2 and c# core that use webpack. But i am having an issue to set the background img. can anyone help me?
Webpack.config
`const path = require('path');
const webpack = require('webpack');
const merge = require('webpack-merge');
const CheckerPlugin = require('awesome-typescript-loader').CheckerPlugin;
module.exports = (env) => {
// Configuration in common to both client-side and server-side bundles
const isDevBuild = !(env && env.prod);
const sharedConfig = {
stats: { modules: false },
context: __dirname,
resolve: { extensions: [ '.js', '.ts' ] },
output: {
filename: '[name].js',
publicPath: '/dist/' // Webpack dev middleware, if enabled, handles requests for this URL prefix
},
module: {
rules: [
{ test: /.ts$/, include: /ClientApp/, use: ['awesome-typescript-loader?silent=true', 'angular2-template-loader'] },
{ test: /.html$/, use: 'html-loader?minimize=false' },
{ test: /.css$/, use: ['to-string-loader', 'css-loader'] },
{ test: /.(png|jpg|jpeg|gif|svg)$/, use: 'url-loader?limit=25000' },
{ test: /.svg(?v=\d+.\d+.\d+)?$/, loader: 'file-loader?mimetype=image/svg+xml' },
{ test: /.woff(?v=\d+.\d+.\d+)?$/, loader: "file-loader?mimetype=application/font-woff" },
{ test: /.woff2(?v=\d+.\d+.\d+)?$/, loader: "file-loader?mimetype=application/font-woff" },
{ test: /.ttf(?v=\d+.\d+.\d+)?$/, loader: "file-loader?mimetype=application/octet-stream" },
{ test: /.eot(?v=\d+.\d+.\d+)?$/, loader: "file-loader" },
{ test: /.scss$/, exclude: /node_modules/, loaders: ['raw-loader', 'sass-loader'] },
]
},
plugins: [new CheckerPlugin()]
};
};
`
'scss'
body{ font-family: "Tw Cen MT", "Century Gothic", Arial; font-size: 15px; color:$secondary-text-color; background-image: url('../../content/logoWhite.png'); }
here is the image, and this is the error that i am having
Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:52243/content/logoWhite.png
Thanks
The text was updated successfully, but these errors were encountered: