-
-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HeaderSearch has wrong styling when compiled #24
Comments
What type of set-up are you using? What value do you have for the |
I'm using SvelteKit and My import netlify from '@sveltejs/adapter-netlify';
import * as carbon from 'carbon-preprocess-svelte';
const production = process.env.NODE_ENV != 'development';
// Netlify will inject this for us, so only inject this for local builds.
if (!production) {
process.env['BUILD_ID'] = 'LOCAL';
}
process.env['VITE_BUILD_ID'] = process.env['BUILD_ID'];
export default {
preprocess: carbon.presetCarbon(),
kit: {
target: '#svelte',
adapter: netlify(),
vite: {
optimizeDeps: { include: ['clipboard-copy'] },
plugins: [production && carbon.optimizeCss()]
}
}
}; |
What happens if you remove the |
That fixes it! Would this be a bug to file against |
Yes – it seems that |
I rewrote this library from scratch in v0.11.0, specifically focusing on getting the
I specifically tested the plugin with the UI Shell examples – this required some additional legwork (carbon-design-system/carbon-components-svelte#1940) Essentially, a SvelteKit config might look like: // vite.config.js
import { sveltekit } from "@sveltejs/kit/vite";
import { optimizeCss } from "carbon-preprocess-svelte";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [sveltekit(), optimizeCss()],
}); |
I am using a
HeaderSearch
component to include a search bar in my global header bar on top. When running svelte in local development, everything works properly and looks like this:That is the right half of the browser window at the top of the page. Here it is expanded:

When I use

npm run build
and host it on Netlify, theHeaderSearch
component is missing quite a few styles and looks like this:And here it is extended:

I had run into a few, other minor differences between local & prod before, but nothing like this. Maybe something is not configured properly? I would love some pointers to figure out what's causing the differences here.
The text was updated successfully, but these errors were encountered: