Skip to content
Discussion options

You must be logged in to vote

https://github.com/TobyMosque/q-poc-dsl-override-20250828

check that repository as a example.

I'm overriding the css from quasar/dist/quasar.sass by my a custom css generated by the claude IA located at ./src/css/quasar-custom.scss.

import { defineConfig } from '#q-app/wrappers';
import { fileURLToPath } from 'node:url';

export default defineConfig((/* ctx */) => {
  return {
    build: {
      alias: {
        'quasar/dist/quasar.sass': fileURLToPath(
          new URL('./src/css/quasar-custom.scss', import.meta.url),
        ),
      },
    }
  }
})

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@mattjcowan
Comment options

Answer selected by mattjcowan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants