Tell tailwind to purge from the src folder (#1797)

This commit is contained in:
Matthew Phillips 2021-11-11 14:35:54 -05:00 committed by GitHub
parent 65d17857ce
commit 2da90d24d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
module.exports = {
mode: 'jit',
purge: ['**/*.{astro,html,js,jsx,svelte,ts,tsx,vue}'],
purge: ['./src/**/*.{astro,html,js,jsx,svelte,ts,tsx,vue}'],
};