Skip to content
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

Closed
keehun opened this issue Dec 23, 2021 · 6 comments · Fixed by #54
Closed

HeaderSearch has wrong styling when compiled #24

keehun opened this issue Dec 23, 2021 · 6 comments · Fixed by #54

Comments

@keehun
Copy link

keehun commented Dec 23, 2021

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:

Screen Shot 2021-12-23 at 2 24 53 PM

That is the right half of the browser window at the top of the page. Here it is expanded:
Screen Shot 2021-12-23 at 2 25 34 PM

When I use npm run build and host it on Netlify, the HeaderSearch component is missing quite a few styles and looks like this:
Screen Shot 2021-12-23 at 2 30 44 PM

And here it is extended:
Screen Shot 2021-12-23 at 2 31 08 PM

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.

@metonym
Copy link
Collaborator

metonym commented Dec 23, 2021

What type of set-up are you using? What value do you have for the emitCSS compiler options?

@keehun
Copy link
Author

keehun commented Dec 23, 2021

I'm using SvelteKit and optimizeCss() from carbon-preprocess-svelte. Using netlify-adapter for the SvelteKit adapter.

My svelte.config.js looks like this:

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()]
		}
	}
};

@metonym
Copy link
Collaborator

metonym commented Dec 23, 2021

What happens if you remove the optimizeCss and re-build it?

@keehun
Copy link
Author

keehun commented Dec 23, 2021

That fixes it! Would this be a bug to file against carbon-preprocess-svelte? Or is it something wrong with HeaderSearch that's causing optimizeCss to optimize this out?

@metonym
Copy link
Collaborator

metonym commented Dec 24, 2021

Yes – it seems that optimizeCss removes those incorrectly. Transferring this issue to carbon-preprocess-svelte.

@metonym metonym transferred this issue from carbon-design-system/carbon-components-svelte Dec 24, 2021
@metonym
Copy link
Collaborator

metonym commented Mar 25, 2024

I rewrote this library from scratch in v0.11.0, specifically focusing on getting the optimizeCss plugin to a good state.

optimizeCss is now a plain Vite plugin, meaning it should work with SvelteKit/Astro/Vite. Additionally, it's compatible with Rollup. The library also ships a plugin for Webpack users.

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()],
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants